🧵 Scule
Install
Install using npm or yarn:
npm i scule
Import:
const { pascalCase } = require("scule");
import { pascalCase } from "scule";
Notice: You may need to transpile package for legacy environments.
Utils
pascalCase(str, opts?: { normalize })
Splits string and joins by PascalCase convention:
pascalCase("foo-bar_baz");
Notice: If an uppercase letter is followed by other uppercase letters (like FooBAR
), they are preserved. You can use { normalize: true }
for strictly following pascalCase convention.
camelCase(str, opts?: { normalize })
Splits string and joins by camelCase convention:
camelCase("foo-bar_baz");
kebabCase(str)
Splits string and joins by kebab-case convention:
kebabCase("fooBar_Baz");
Notice: It does not preserve case.
snakeCase
Splits string and joins by snake_case convention:
snakeCase("foo-barBaz");
flatCase
Splits string and joins by flatcase convention:
flatCase("foo-barBaz");
trainCase(str, opts?: { normalize })
Split string and joins by Train-Case (a.k.a. HTTP-Header-Case) convention:
trainCase("FooBARb");
Notice: If an uppercase letter is followed by other uppercase letters (like WWWAuthenticate
), they are preserved (=> WWW-Authenticate
). You can use { normalize: true }
for strictly only having the first letter uppercased.
titleCase(str, opts?: { normalize })
With Title Case all words are capitalized, except for minor words.
A compact regex of common minor words (such as a
, for
, to
) is used to automatically keep them lower case.
titleCase("this-IS-aTitle");
upperFirst(str)
Converts first character to upper case:
upperFirst("hello world!");
lowerFirst(str)
Converts first character to lower case:
lowerFirst("Hello world!");
splitByCase(str, splitters?)
- Splits string by the splitters provided (default:
['-', '_', '/', '.']
) - Splits when case changes from lower to upper or upper to lower
- Ignores numbers for case changes
- Case is preserved in returned value
- Is an irreversible function since splitters are omitted
Development
- Clone this repository
- Install latest LTS version of Node.js
- Enable Corepack using corepack enable
- Install dependencies using pnpm install
- Run interactive tests using pnpm dev
License
MIT